home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
lisp
/
kcl
/
akcl
/
akcl1615.lha
/
c
/
bcmp.c
next >
Wrap
C/C++ Source or Header
|
1989-04-25
|
123b
|
12 lines
int bcmp(s1,s2,n)
char *s1,*s2;
int n;
{ while (n-- > 0)
{if (*s1++ != *s2++)
return 1;}
return 0;
}